10
How do I bring/ensure a specified face to the front

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.IdentifyFace = 7 ' IdentifyFaceEnum.exIdentifyFaceFrame Or IdentifyFaceEnum.exIdentifyFaceName Or IdentifyFaceEnum.exIdentifyFaceCaption
		.VisibleFace = 4
	End With
End Function
</SCRIPT>
</BODY>

9
How do I bring/ensure a specified face to the front

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.IdentifyFace = 7 ' IdentifyFaceEnum.exIdentifyFaceFrame Or IdentifyFaceEnum.exIdentifyFaceName Or IdentifyFaceEnum.exIdentifyFaceCaption
		.EnsureVisibleFace 4
	End With
End Function
</SCRIPT>
</BODY>

8
It sounds like the BackColor property does nothing

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.BackColor = RGB(255,0,0)
		.Transparent = 50
	End With
End Function
</SCRIPT>
</BODY>

7
Is there any property to identify the faces I can fill in

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.IdentifyFace = 7 ' IdentifyFaceEnum.exIdentifyFaceFrame Or IdentifyFaceEnum.exIdentifyFaceName Or IdentifyFaceEnum.exIdentifyFaceCaption
	End With
End Function
</SCRIPT>
</BODY>

6
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.OnMouseWheel = 0
	End With
End Function
</SCRIPT>
</BODY>

5
Can I navigate through the faces 0 to 3 only, even with the keyboard
<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.EnsureVisibleFaces = "0,1,2,3"
		.AllowRotate = 3 ' RotateEnum.exRotateRight Or RotateEnum.exRotateLeft
		.IdentifyFace = 7 ' IdentifyFaceEnum.exIdentifyFaceFrame Or IdentifyFaceEnum.exIdentifyFaceName Or IdentifyFaceEnum.exIdentifyFaceCaption
		.EnsureVisibleFaceOnDblClick = False
	End With
End Function
</SCRIPT>
</BODY>

4
It sounds like the BackColor property does nothing

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.BackColor = RGB(255,0,0)
		.ShowAs = 1
		.AlwaysEnsureVisibleFace = 0
		.RotX = 0.328184
		.RotY = 0.967723
	End With
End Function
</SCRIPT>
</BODY>

3
Is it possible to let the control shows/rotates just the left/right side
<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.AllowRotate = 3 ' RotateEnum.exRotateRight Or RotateEnum.exRotateLeft
	End With
End Function
</SCRIPT>
</BODY>

2
How can I disable changing the view if the user presses SPACE or digit keys
<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.AllowEnsureVisibleFaceOnKey = 0
	End With
End Function
</SCRIPT>
</BODY>

1
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

<BODY onload="Init()">
<OBJECT CLASSID="clsid:13A5B44B-DBB7-42F2-AE2B-943A6CF6C8B9" id="TreeCube1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With TreeCube1
		.IdentifyFace = 7 ' IdentifyFaceEnum.exIdentifyFaceFrame Or IdentifyFaceEnum.exIdentifyFaceName Or IdentifyFaceEnum.exIdentifyFaceCaption
		.AlwaysEnsureVisibleFace = 0
	End With
End Function
</SCRIPT>
</BODY>